home *** CD-ROM | disk | FTP | other *** search
- Path: newsbf02.news.aol.com!not-for-mail
- From: mrdavc@aol.com (Mrdavc)
- Newsgroups: comp.lang.c++
- Subject: Re: what does this code do?
- Date: 8 Apr 1996 13:21:08 -0400
- Organization: America Online, Inc. (1-800-827-6364)
- Sender: root@newsbf02.news.aol.com
- Message-ID: <4kbhu4$83@newsbf02.news.aol.com>
- References: <3167217D.AC7@lex.infi.net>
- Reply-To: mrdavc@aol.com (Mrdavc)
- NNTP-Posting-Host: newsbf02.mail.aol.com
-
- linePtrs[currentLine][lineLen[currentLine]] = (char) key;
-
- so does that mean that the preceeding code is identical to the following:
-
- linePtrs[currentLine] = (char) key;
- lineLen[currentLine] = (char) key;
-